home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C / Games / Pentominoes 2.0 / Pent code / pent main window.h < prev    next >
Text File  |  1995-07-23  |  863b  |  27 lines

  1. #ifndef __PENT_MAIN_WINDOW_H__
  2. #define __PENT_MAIN_WINDOW_H__
  3.  
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7.  
  8. extern    void SetupTheMainWindow(WindowRef theWindow);
  9. extern    void OpenTheMainWindow(WindowRef theWindow);
  10. extern    Boolean CloseTheMainWindow(WindowRef theWindow);
  11. extern    void DisposeTheMainWindow(WindowRef theWindow);
  12. extern    void ActivateTheMainWindow(void);
  13. extern    void DeactivateTheMainWindow(void);
  14. extern    void KeyPressedInMainWindow(WindowRef theWindow, unsigned char theChar);
  15. extern    void MouseClickedInMainWindow(WindowRef theWindow, Point mouseLoc);
  16. extern    void MouseUpInMainWindow(void);
  17. extern    void DrawTheMainWindow(WindowRef theWindow, short theDepth);
  18. extern    void UndoInMainWindow(WindowRef theWindow);
  19. extern    void SetNewMainWindowTitle(Str31 titleStr);
  20. extern    void DealWithChangedPieceSize(WindowRef theWindow);
  21.  
  22. #ifdef __cplusplus
  23. }
  24. #endif
  25.  
  26. #endif
  27.